C 之字元轉換

2021-09-02 07:22:01 字數 1606 閱讀 8329

顯示符號,需要新增\+特殊字元,顯示出來  \為轉義符(在要顯示的每個符號前都加上\) \+

特殊字元,就可以在執行時顯示這個特殊字元

\n 表示換行

\b 表示退格

\\ 

表示乙個\

\t 表示水平製表符,讓後面的字元盡量與上乙個字元對齊 \

" 表示乙個雙引號

算術運算子 + -*  /  %(取餘 取模)

變數需要先宣告,再賦值,才能使用

int型別變數使用佔位符保留小數

當我們所得到的數值型的資料需要保留小數時,可以使用佔位符保留

宣告兩個數值變數,計算得到帶有數值的小數,然後使用佔位符保留小數

**展示

int num4 = 10, num5 = 3;

double remainder = num4 * 1.0 / num5;

console.writeline("", remainder); //使用佔位符,保留小數點後的小數。

console.readkey();

double型別轉換為int型別

首先定義乙個double型別的變數,然後將變數轉換為int型別。

double

型別的資料轉換為nt型別的資料,會丟失精度。

**展示

//double型別轉換為int型別

double num6 = 303.6;

int num = (int)num6;

console.writeline(num);

console.readkey();

字串型別轉換

通過intchinese = convert.toint32(strchinese)**將字串型別轉換為int型別。然後進行計算。

console.writeline("請輸入你的語文成績");

string strchinese = console.readline();//字串型別

console.writeline("請輸入你的數學成績");

string strmath = console.readline();//字串型別

console.readkey();

//計算總成績--需要都是數字型別,才能計算

//把字串型別轉換為int型別 轉換為char型別,就改為 tochar即可,可以轉化為任何型別

int chinese = convert.toint32(strchinese);

int math = convert.toint32(strmath);

int sum = chinese + math;

int age1 = sum / 2;

console.writeline("你的總成績為:\n", sum);

console.readkey();

console.writeline("你的平均成績為:\n", age1);

console.readkey();

c語言字元轉換

一,概括 在實際應用中,我們會遇到將整型轉換為字元型,或者將字元型轉換為整型的時候,在c語言中提供了一套介面用來實現上述要求,它們分別為 int atoi char arry 將字串轉換為整型 float atof char arry 將字串轉換為float char itoa int value,...

C 字元轉換器

include include define outlen 255 main 轉換 從一種編碼轉為另一種編碼 int code convert char from charset,char to charset,char inbuf,int inlen,char outbuf,int outlen ...

C 字串轉換

一 utilstring.h pragma once include include namespace utilstring 二 utilstring.cpp include stdafx.h include utilstring.h include include using namespace...