码迷,mamicode.com
首页 >  
搜索关键字:scanf    ( 10388个结果
hdu 2037 今年暑假不AC
http://acm.hdu.edu.cn/showproblem.php?pid=2037贪心的题,按结束时间来贪心,结束时间尽可能提前,看得节目就尽可能多了。注意审题,题目说不止一组数据就得写好循环while(scanf("%d",&n)!=EOF)等价于while(~scanf("%d",&n...
分类:其他好文   时间:2014-07-24 22:14:02    阅读次数:216
d4_1 字符长度
#includevoid main(){char name[10];int i=0;printf("Enter your name:");scanf("%s",name);printf("Spell it:");while(name[i]!='\0'){ printf("%c ",name[i...
分类:其他好文   时间:2014-07-24 21:25:19    阅读次数:186
关于scanf的几种处理方法
关于scanf的几种处理方法...
分类:其他好文   时间:2014-07-23 22:37:37    阅读次数:202
d2_矩阵相乘
#includevoid main (){ int x=0,y=0,z=0; int i,j,k; printf("Enter x,y,z:"); scanf("%d %d %d",&x,&y,&z); int a[x][y],b[y][z],c[x][z]; p...
分类:其他好文   时间:2014-07-23 20:53:25    阅读次数:177
linux C(hello world)最大公约数和最小公倍数
# include int main(void){ int x, y,temp; int r; printf("请输入两个正整数:\n"); scanf("%d %d", &num1, &num2); r = num1 % num2; temp = num2; while(r!=0) { nu...
分类:系统相关   时间:2014-07-23 15:16:56    阅读次数:267
HDU 1097 A hard puzzle
#include int main() { int a,b; while(scanf("%d%d",&a,&b)!=EOF) { int i,last; a=a%10; b=b%4; last=a;//必须在此处将a的值赋给last if(b==0) b=4; for(i=1;i<b;i++) { last=a*last%10; } printf...
分类:其他好文   时间:2014-07-23 13:23:26    阅读次数:282
周期串 字符串的最小正周期
输入一个长度不超过80的字符串,输出它的最小周期。 样例输入:HoHoHo 样例输出:2 代码: #include #include int main() { char word[100]; scanf("%s",word); int len=strlen(word); for(int i=1;i<=len;i++) if(len%i==0) { int ok=1; ...
分类:其他好文   时间:2014-07-23 00:04:28    阅读次数:187
10055 - Hashmat the Brave Warrior
#include#include#include#includeusing namespace std;//typedef __int64 lld;typedef long long lld;int main(){ lld n,m,ans; //while(scanf("%I64d%I6...
分类:其他好文   时间:2014-07-22 23:19:07    阅读次数:194
D - 排列
1 #include 2 #include 3 #include 4 using namespace std; 5 #define MAXN 2050 6 int str[MAXN]; 7 int main() 8 { 9 int m,n,k,i;10 scanf("%d",&m)...
分类:其他好文   时间:2014-07-22 22:57:52    阅读次数:217
奋战4小时的家庭作业
#includeint main(viod) { int a,b,c,max,min,mid,stemp1,stemp2,stemp3; printf("请输入三个数,用逗号分隔"); scanf("%d,%d,%d",&a,&b,&c); max=a; max=max>b?max:b; ...
分类:其他好文   时间:2014-07-22 22:41:12    阅读次数:223
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!