输入姓名打印年龄练习

//、用户输入姓名,然后打印此人的年龄,从1岁-18岁,每一岁占一行,打印内容为“我今年xxx岁了!”;

//当6岁时增加打印“我上小学了!”;

//当11岁时增加打印“我上初中了!”;

//当15岁时增加打印“我上高中了!”;

//当18岁时增加打印“我成年了!考上了北大!”

Console.Write("姓名:");

string name=Console.ReadLine();

for (int i = 1; i <= 18;i++ )

{

Console.WriteLine("我今年"+i+"岁了!");

switch (i)

{

case 6: Console.WriteLine("我上小学了!");

break;

case 11: Console.WriteLine("我上初中了!");

break;

case 15: Console.WriteLine("我上高中了!");

break;

case 18: Console.WriteLine("我成年了!考上北大了!");

break;

}

}

Console.ReadLine();

时间: 2024-10-22 06:48:45

输入姓名打印年龄练习的相关文章

//输入学生人数,挨个输入姓名,身高,年龄,求平均年龄,然后按身高降序排列输出

13:52:49N U L L 2014/12/19 13:52:49using System;using System.Collections;using System.Collections.Generic;using System.Linq;using System.Text; namespace _1120_1210{    class JieGouTi    {        //输入学生人数,挨个输入姓名,身高,年龄,求平均年龄,然后按身高降序排列输出        public s

声明四个变量,姓名、年龄、性别和身高,打印出来。

/** * @author 蓝色以太 * 声明四个变量,姓名.年龄.性别和身高,打印出来. */ public class DeclareVariables { public static void main(String[] args) { String name="张三"; int age=20; char gender='男'; double height=1.78; System.out.println("姓名:"+name); System.out.pri

使用SharedPreferences将姓名和年龄信息保存在文件中,并读取信息

第一个是XML文件: 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.android.com/tools" 4 android:id="@+id/activi

【python学习】今天看看学习 %d ,%s, %f 等用法,下面的学习例子是说输入名字、年龄、工作,工资。并给出65岁退休还差多久的计算

今天看看学习 %d ,%s, %f 等用法.%d 是占位符整数,%s 是占位符,%f 是浮点数.下面的学习例子是说输入名字.年龄.工作,工资.并给出65岁退休还差多久的计算.重点在于用占位符来print (msg).后面附更多的备用. # __author__:"Gabriel Jason" # date: 2017-11-05 name = input("Name:") age = int(input("Age:")) job = input(

练习:往HashSet中存储学生对象(姓名,年龄) 同姓名,同年龄视为一个人,不存

具体源码实现 package com.runoob.test; import java.util.HashSet; import java.util.Iterator; import java.util.Set; public class HashSetTest { public static void main(String[] args) { // TODO Auto-generated method stub /* * 练习:往HashSet中存储学生对象(姓名,年龄) 同姓名,同年龄视为

打印出从1到最大的n位十进制数,如输入3 打印 1到 999

打印出从1到最大的n位十进制数,如输入3  打印 1到 999 分析: 可能很多人想到直接求出  10的 n次方  ,然后从1打印到该数.这种情况只适合输入比较小的数字  如  1   2    3   4   5  但是当输入100时,肯定无法直接表示该数. 所以,用数组是一个不错的方法   number[n] 换种思路,n位所有十进制数其实就是n个0-9的数全排列的过程,只是排在前面的0我们不打印出来. 类似于树的深度遍历,树的深度为10层,先从第一层遍历到最后一层   ,当最后一层的所有可

如何利用while语句根据用户输入要求打印菱形图案

需求:如何利用while语句根据用户输入要求打印菱形图案 diamond.py代码如下: x=int(input('Please input number: ')) i=1 j=1 while i<=x: j=1 while j<=x-i : print(' ',end='') j+=1 while j<=x: print('* ',end='') j+=1 print() i+=1 i=1 while i<=x-1: j=1 while j<=i : print(' ',e

jQuery判断是否输入姓名

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <input type="text" placeholder="请输入姓名(必须是汉字)" name="xingm

输入姓名评估的跳转

首先是第一个界面 <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/edit" android:hint="请输入姓名" android:gravity="center" android:layout_marginTop="180dp"