1268:P1001 摘要:#include<stdio.h>int main(){ int n,k,i=0,a[10000]={0}; scanf("%d%d", &n,&k); while(i<n){ …… 文章列表 2017年07月26日 0 点赞 0 评论 796 浏览 评分:0.0
1028 摘要:#include <stdio.h>#include <math.h>void command_zero(double a,double b,double c);void command_upzero…… 文章列表 2017年07月24日 0 点赞 0 评论 1178 浏览 评分:0.0
1065 摘要:#include <stdio.h>#include <math.h>int main(){ int a[10]={0},i,j; for(i=0;i<10;i++){ scanf("%d",a…… 文章列表 2017年07月24日 0 点赞 0 评论 1040 浏览 评分:0.0
关于逻辑非“!”与取反“~”运算符 摘要: 逻辑非返回值为“真”和“假”两种状态,C语言用“非0”表示真,用“0”表示假,所以非“真”即为“0”,非“假”即为“1”; 按位取反指将一个数的二进制的每个位取反,即“0001010…… 文章列表 2017年07月06日 1 点赞 0 评论 2818 浏览 评分:9.9
文件应用-fwrite函数 摘要:#include<stdio.h> typedef struct Stu{ char StuNo[8]; char Name[20]; float iScore[3];…… 文章列表 2017年06月18日 0 点赞 0 评论 896 浏览 评分:0.0
Scanf函数能否接收空格? 摘要:#include <stdio.h> void main() { char s1[10],s2[10]; scanf("%s%s",s1,s2); //遇到空格、回车或非法字符…… 文章列表 2017年06月18日 1 点赞 0 评论 1765 浏览 评分:2.0
文件的应用举例-应用fprintf函数 摘要:#include<stdio.h> typedef struct Stu{ char StuNo[8]; char Name[20]; float iScore[3];…… 文章列表 2017年06月18日 2 点赞 0 评论 960 浏览 评分:0.0