简易的编程代码,给我个比较简单的程序代码想学下编程

1,给我个比较简单的程序代码想学下编程char x;x=x+1;//这个表示x加1后,再赋值给x,你能了解这个最简单的语句么
2,超简单C语言编程#include<stdio.h>void main() int a,b,c,m; printf("Input a b c:"); scanf("%d%d%d",&a,&b,&c); if(a>b) if(a>c)m=a; else m=c; else if(b>c)m=b; else m=c; printf("%d\n",m);}【简易的编程代码,给我个比较简单的程序代码想学下编程】
3,求一简单C程序代码写好了 , 你看看吧,有要求再提#include<stdio.h>#include<conio.h>int main()char input[50];printf("请问 1+1=");for(;;)gets(input);if(strcmp(input,"2")==0)printf("重新输入 1+1=");}getch();}#include <stdio.h>void main() int a = 0; printf("计算1+1 = ?\n"); scanf("%d",&a);while (a != 2)printf("错误,重新输入\n");scanf("%d",&a);} if (a== 2)printf("正确\n");}}楼主,放在里面和放在外面意义是不同的 。假定p=0和n=0放在了外面,那么这个程序是什么意思呢?每次循环后如果符合条件p都要被赋值的[原因:p=p+n],也就是说p的值被改了 。它不再是0了 。每次循环都是如此 。而如果p=0在里面,那么每次循的开始都要把p的值改为0,这样就不会累加了 。所以在功能和意义上是有区别的 。不能说放在里面放在外面都一样 。
4,急简单JAVA编程代码public class Testpublic static void main(String[] args)MyRectangle rec = new MyRectangle(3, 5);MyRectangle square = new MySquare(4);System.out.println(rec.toString()); System.out.println(square.toString()); }}class MyRectangle protected double width; protected double length;public MyRectangle(double length, double width) this.width = width; this.length = length; } public double getLength()return length; } public double getWidth()return width; } public void setWidth(double width)this.width = width; }public double getArea() return this.width * this.length; }public String toString() return "长方形的长为:" + length + ", 宽: " + width + ", 面积为:" + getArea(); }}class MySquare extends MyRectangle public MySquare(double length) super(length, length); }public double getArea() return Math.pow(super.width, 2); } public String toString() return "正方形边长为: " + super.length + ", 面积为: " + getArea(); }}----------测试长方形的长为:3.0, 宽: 5.0, 面积为:15.0正方形边长为: 4.0, 面积为: 16.0

    推荐阅读