都是C语言常用的算法

源代码在线查看: for循环的.c

软件大小: 289 K
上传用户: joyman
关键词: C语言 算法
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include 
				
				main()
				{
					int i,j,k,count=1;
					printf("There are following small exchange plans for i Yuan note :\n");
					for(i=0;i						for(j=0;j							for(k=0;k								if(i+j+k==100)
									printf(count%4? "%d: 1*%d+2*%d+5*%d   ":"%d:1*%d+2*%d+5*%d\n",count++,i,j/2,k/5);
					getch();
				}    			

相关资源